--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Commit 9659d78c2c1c89e20e305d49fd2fe521cb97aabe
Parents : 5491b96
Author : Mark Qvist <mark@unsigned.io>
Date : 2025-11-27T18:38:06+01:00
Updated makefile
Changes
Diff
diff --git a/Makefile b/Makefile
index 7eeb1c7..4689891 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,15 @@ create_symlinks:
build_wheel:
cp ./lib/static/* ./LXST/
touch ./skip_extensions
- python3 setup.py sdist bdist_wheel
+ python3 setup.py bdist_wheel
+ rm ./skip_extensions
+ -@(rm ./LXST/*.so)
+ -@(rm ./LXST/*.dll)
+
+build_sdist:
+ cp ./lib/static/* ./LXST/
+ touch ./skip_extensions
+ python3 setup.py sdist
rm ./skip_extensions
-@(rm ./LXST/*.so)
-@(rm ./LXST/*.dll)
@@ -40,6 +48,8 @@ persist_libs:
-cp ./lib/dev/*.so ./lib/static/
-cp ./lib/dev/*.dll ./lib/static/
+build_spkg: remove_symlinks build_sdist create_symlinks
+
release: remove_symlinks build_wheel create_symlinks
upload:
──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────